home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / exampl2r / frmtest.frm (.txt) < prev    next >
Visual Basic Form  |  1999-08-18  |  2KB  |  75 lines

  1. VERSION 5.00
  2. Begin VB.Form frmTest 
  3.    Caption         =   "Clock"
  4.    ClientHeight    =   720
  5.    ClientLeft      =   6900
  6.    ClientTop       =   -720
  7.    ClientWidth     =   1560
  8.    ControlBox      =   0   'False
  9.    KeyPreview      =   -1  'True
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   720
  12.    ScaleWidth      =   1560
  13.    StartUpPosition =   3  'Windows Default
  14.    Begin VB.Timer tmrUpdateTime 
  15.       Interval        =   500
  16.       Left            =   0
  17.       Top             =   -120
  18.    End
  19.    Begin VB.CommandButton cmdExit 
  20.       Caption         =   "E&xit"
  21.       Height          =   255
  22.       Left            =   0
  23.       TabIndex        =   0
  24.       Top             =   480
  25.       Width           =   1575
  26.    End
  27.    Begin VB.Label lblTime 
  28.       Alignment       =   2  'Center
  29.       Caption         =   "lblTime"
  30.       BeginProperty Font 
  31.          Name            =   "MS Sans Serif"
  32.          Size            =   8.25
  33.          Charset         =   0
  34.          Weight          =   700
  35.          Underline       =   0   'False
  36.          Italic          =   0   'False
  37.          Strikethrough   =   0   'False
  38.       EndProperty
  39.       Height          =   255
  40.       Left            =   0
  41.       TabIndex        =   1
  42.       Top             =   120
  43.       Width           =   1455
  44.    End
  45.    Begin TaskBar.Form_TaskBar Form_TaskBar 
  46.       Left            =   -480
  47.       Top             =   0
  48.       _ExtentX        =   1296
  49.       _ExtentY        =   450
  50.       NumSteps        =   6
  51.       HangDown        =   4
  52.    End
  53. Attribute VB_Name = "frmTest"
  54. Attribute VB_GlobalNameSpace = False
  55. Attribute VB_Creatable = False
  56. Attribute VB_PredeclaredId = True
  57. Attribute VB_Exposed = False
  58. Option Explicit
  59. Private Sub Form_TaskBar_StartOpenUp()
  60.     tmrUpdateTime.Enabled = True
  61.     tmrUpdateTime.Interval = 1000
  62. End Sub
  63. Private Sub Form_TaskBar_EndCloseUp()
  64.     tmrUpdateTime.Enabled = False
  65. End Sub
  66. Private Sub tmrUpdateTime_Timer()
  67.     lblTime.Caption = Format(Now, "long time")
  68. End Sub
  69. Private Sub cmdExit_Click()
  70.     Unload Me
  71. End Sub
  72. Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
  73.     Unload Me
  74. End Sub
  75.